home *** CD-ROM | disk | FTP | other *** search
/ Amiga Plus 2004 #9 / Amiga Plus CD - 2004 - No. 09.iso / amigaplus / tools / amigaos4_only / ripple / makefile next >
Makefile  |  2004-08-03  |  342b  |  15 lines

  1. # Ripple by Troels Walsted Hansen <troels@stud.cs.uit.no>, based on 
  2. # xripple by Carsten «Rasterman» Haitzler <s2154962@cse.unw.edu.au>.
  3. #
  4. # Makefile for GCC
  5.  
  6. C_OPTS = -V 2.95.3 -Wall -O3 -fomit-frame-pointer -D__USE_INLINE__
  7.  
  8. # rules for four different versions
  9.  
  10. all: Ripple
  11.  
  12. Ripple: Ripple.c
  13.     ppc-amigaos-gcc $(C_OPTS) Ripple.c -o $@ -lm
  14.  
  15.